home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir40 / go200.zip / GOREADME.TXT < prev    next >
Text File  |  1994-07-13  |  4KB  |  99 lines

  1. GOREADME.TXT
  2.  
  3. This is a brief explanation of how to set up your computer to run the
  4. StuSoft GO utility.  If you want basic info on what GO does and how it
  5. works, read the file GO.TXT.
  6.  
  7. To set up a computer to run GO, you need an environmental variable called
  8. GODIR (defined using the SET command).  The string should contain the 
  9. default directory for GO and be back-filled with forward slashes (/) to
  10. allow enough room for your deepest nested path -- more about that later.
  11.                    
  12. EXAMPLE:  
  13.   
  14. SET GODIR=./////////////////////////////////////////////////////////////////
  15.  
  16. You can type this line from the DOS prompt and GO will work.  The program 
  17. GOSETUP.BAT will automatically set the GODIR variable to the above default 
  18. value.  But the best way is to include a line in your AUTOEXEC.BAT file to 
  19. SET the variable GODIR.  If you know how to use EDIT, EDLIN, or another 
  20. editor to change AUTOEXEC, you can just add the example line (above) to your 
  21. AUTOEXEC and you should have no problems with GO!  
  22.  
  23. IMPORTANT!!!!!
  24.  
  25.         Before you change the file AUTOEXEC.BAT or CONFIG.SYS, you 
  26.         should make a backup copy.  It is best to do this on a 
  27.         bootable floppy disk (so you can restore them if a problem
  28.         develops).  Here's the quick 'n' dirty directions for that:
  29.  
  30.         1) put a disk in drive A:, and type:    FORMAT A:/S
  31.         2) switch to drive A:, by typing:       A:
  32.         3) create a backup directory; type:     MD BACKUP
  33.         4) change the backup directory:         CD BACKUP
  34.         5) copy the files to A:                 COPY C:\AUTOEXEC.BAT
  35.                                                 COPY C:\CONFIG.SYS
  36.  
  37.         Once you have made a bootable floppy, restoring the original 
  38.         CONFIG.SYS and AUTOEXEC.BAT files is easy:
  39.  
  40.         1) put the bootable disk in drive A: and restart the computer
  41.         2) type: COPY A:\BACKUP\*.* C:\
  42.  
  43. If you do add a SET statement for GODIR in your AUTOEXEC, you could include
  44. a default drive/directory for GO.  You might do something like this:
  45.  
  46. SET GODIR=D:\UTILS\STUSOFT//////////////////////////////////////////////////
  47.  
  48. Then GO would change to the directory D:\UTILS\STUSOFT the first time you
  49. typed: GO
  50.  
  51. If you set GODIR as the first example shows (and as GOSETUP does) typing  
  52. GO with no arguments will get you the message:
  53.  
  54.         Nowhere to go! (go)
  55.  
  56.  
  57. Another NOTE:   You will get the same message if you type: GO .
  58.                 This is because . (a period) is a xxDOS alias for
  59.                 the current directory.  Go traps this, since there
  60.                 is no real reason to GO to and store the path for
  61.                 the current directory.
  62.  
  63.  
  64. O.K., what is this nested subdirectory stuff?
  65.  
  66. As you know, xxDOS keeps files in directories.  A disk may have many
  67. directories, with the root directory (\) always being the top.  Directories
  68. *below* that are called subdirectories.  These subdirectories may also have
  69. subdirectories within them.  This box-in-a-box method of storing files is
  70. referred to as NESTING.  The limit to nesting is xxDOS's limit of 63
  71. characters for a path name.  GO's default limit for pathname length is 
  72. 66 characters *including* the drive letter, the separating colon (:), 
  73. and the separating slashes (\).  The program GOSETUP sets the GODIR variable 
  74. as big as xxDOS will ever use. GO's arbitrary limit for a pathname is 117 
  75. characters (because of xxDOS's 128 character limit on command lines).
  76. This shouldn't be a problem since xxDOS won't let you create a path that
  77. big enough to fill the default setting for GODIR. 
  78.  
  79.  
  80.  
  81.  
  82. NOTE: Your environment MUST be large enough to hold the string you 
  83.       enter as GODIR.  You can change your environment size in the 
  84.       file CONFIG.SYS on your boot drive.  It should have a statement 
  85.       something like the following:
  86.  
  87.         SHELL=C:\COMMAND.COM C:\DOS\ /E:512 /P
  88.  
  89.       /E:512 sets the environment size to 512 bytes.  You can adjust 
  90.       this number up to allow more room for the GODIR variable, but 
  91.       the bigger you make GODIR (and the environment) the less memory 
  92.       you will have free for running programs.
  93.                 
  94.       It should be noted that the upper limit for the size of the GODIR 
  95.       variable is nominally 128 bytes (all you can type on a command line) 
  96.       and that 128 bytes in not much memory at all!
  97.  
  98.  
  99.